{% extends 'base.html' %} {% block content %}

Appointments

New Appointment
{% if user.is_staff %}
{% endif %}
Clear
{% if appointments %}
{% for appointment in appointments %} {% endfor %}
Date & Time Client Service Staff Status Actions
{{ appointment.start_time|date:"M d, Y" }}
{{ appointment.start_time|time:"H:i" }} - {{ appointment.end_time|time:"H:i" }}
{{ appointment.client.get_full_name|default:appointment.client.username }} {{ appointment.service.name }} {{ appointment.staff_member.user.get_full_name|default:appointment.staff_member.user.username }} {{ appointment.get_status_display }} {% if user == appointment.client or user.is_staff %} {% endif %} {% if user.is_staff %} {% endif %}
{% if is_paginated %} {% endif %} {% else %}
No appointments found. Create a new appointment.
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}